home *** CD-ROM | disk | FTP | other *** search
/ PC Open 93 / PC Open 93 CD 2.bin / PDF / webdeveloper / lezione_2 / application / menuasp.asp < prev    next >
Encoding:
Text File  |  2003-10-25  |  673 b   |  36 lines

  1.  
  2. <%
  3.  'Application.Lock
  4.  Application("utente") = "Mario" 
  5.  Application("password") = "foo" 
  6. ' Application.Unlock
  7.  %>
  8.  
  9. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  10.  
  11. <html>
  12. <head>
  13.     <title>Il sito di Mario Rossi</title>
  14. </head>
  15.  
  16. <% if Session("colore") <> "" then %>
  17. <body bgcolor="<%=Session("colore")%>">
  18. <% else %>
  19. <body>
  20. <% end if %>
  21.  
  22.  
  23. <table width="100%" border="1" cellpadding="0" cellpadding="2">
  24. <tr>
  25.     <td width="100">
  26.  
  27.     <!--#include file="includemenu.asp"-->
  28.  
  29.     </td>
  30.     <td><h1><div align="center">Questa Φ la Home Page del sito</div></h1></td>
  31. </tr>
  32. </table>
  33.  
  34. </body>
  35. </html>
  36.